crypto/cipher.ofb.out (field)

14 uses

	crypto/cipher (current package)
		ofb.go#L17: 	out     []byte
		ofb.go#L36: 		out:     make([]byte, 0, bufSize),
		ofb.go#L46: 	remain := len(x.out) - x.outUsed
		ofb.go#L50: 	copy(x.out, x.out[x.outUsed:])
		ofb.go#L51: 	x.out = x.out[:cap(x.out)]
		ofb.go#L52: 	for remain < len(x.out)-bs {
		ofb.go#L54: 		copy(x.out[remain:], x.cipher)
		ofb.go#L57: 	x.out = x.out[:remain]
		ofb.go#L69: 		if x.outUsed >= len(x.out)-x.b.BlockSize() {
		ofb.go#L72: 		n := subtle.XORBytes(dst, src, x.out[x.outUsed:])